jeeps/gpscom.h
jeeps/gpsdatum.h
jeeps/gpsdevice.h
- jeeps/gpsfmt.h
jeeps/gpsmath.h
jeeps/gpsmem.h
jeeps/gpsport.h
case 0x8000b: /* address (street/city...) */
(void) gbfgetint32(fin);
- // FALLTHROUGH
+ [[fallthrough]];
case 0xb: /* as seen in German POI files. */
PP;
mask = gbfgetint16(fin); /* address fields mask */
public:
QVector<arglist_t>* get_args() override
{
- return &tpo2_args;
+ return nullptr;
}
ff_type get_type() const override
{
tpo_rd_deinit();
}
-
-private:
- /* Data Members */
-
- QVector<arglist_t> tpo2_args = {};
};
class Tpo3Format : public Format, private TpoFormatBase
public:
QVector<arglist_t>* get_args() override
{
- return &tpo3_args;
+ return nullptr;
}
ff_type get_type() const override
{
tpo_rd_deinit();
}
-
-private:
- /* Data Members */
-
- QVector<arglist_t> tpo3_args = {};
};
#endif // TPO_H_INCLUDED_
{
if (args) {
for (const auto& arg : *args) {
- if (*arg.argval && arg.argval) {
+ if (arg.argval && *arg.argval) {
printf("options: module/option=value: %s/%s=\"%s\"",
qPrintable(vecname), qPrintable(arg.argstring), *arg.argval);
if (case_ignore_strcmp(arg.defaultvalue, *arg.argval) == 0) {